html,
body {
    box-sizing: border-box;
    overflow-x: hidden;
    width: 100vw;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

@media (max-width: 600px) {
    body,
    .main-container,
    .testimonial-section {
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    img,
    .testimonial-image {
        max-width: 100%;
        height: auto;
        display: block;
    }
}
body {
    background: #fff;
}
/* Get Involved Section */
.get-involved-section {
    background: linear-gradient(180deg, #fff6fa 0%, #fff6f6 100%);
    padding: 60px 0 40px 0;
    text-align: center;
}
.get-involved-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #232a36;
    margin-bottom: 0.5em;
}
.get-involved-desc {
    color: #4a5568;
    font-size: 1.25rem;
    margin-bottom: 2.5em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.get-involved-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3em;
    margin-top: 2em;
}
.contact-info {
    background: #fff;
    border-radius: 1.5em;
    box-shadow: 0 4px 24px rgba(255, 94, 98, 0.1);
    padding: 2.5em 2em 2em 2em;
    max-width: 350px;
    min-width: 260px;
    flex: 1 1 260px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}
.contact-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #232a36;
    margin-bottom: 1em;
}
.contact-row {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-bottom: 0.7em;
}
.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(90deg, #ff5e8a 0%, #ff9966 100%);
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 2px 8px rgba(255, 94, 98, 0.1);
}
.contact-details {
    display: flex;
    flex-direction: column;
}
.contact-details span {
    font-weight: 600;
    color: #232a36;
}
.contact-details p {
    color: #4a5568;
    font-size: 1.05rem;
    margin: 0;
}
.ways-to-help {
    background: #fff;
    border-radius: 1.2em;
    box-shadow: 0 4px 24px rgba(255, 94, 98, 0.1);
    padding: 2em 1em 2em 1em;
    margin-top: 1em;
    width: 100%;
    max-width: 350px;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
}
.ways-to-help h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #232a36;
    margin-bottom: 1em;
}
.ways-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ways-list li {
    font-size: 1.08rem;
    color: #232a36;
    margin-bottom: 0.7em;
    display: flex;
    align-items: center;
    gap: 0.6em;
}
.ways-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.ways-dot.pink {
    background: #ff5e8a;
}
.ways-dot.orange {
    background: #ff9966;
}
.message-form {
    background: #fff;
    border-radius: 1.5em;
    box-shadow: 0 4px 24px rgba(255, 94, 98, 0.1);
    padding: 2.5em 2em 2em 2em;
    max-width: 420px;
    min-width: 280px;
    flex: 1 1 320px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}
.message-form h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #232a36;
    margin-bottom: 1em;
}
.form-row {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 1em;
    width: 100%;
}
.form-group label {
    font-size: 1.05rem;
    color: #232a36;
    margin-bottom: 0.3em;
}
.form-group input,
.form-group textarea {
    padding: 0.8em 1em;
    border-radius: 0.7em;
    border: 1px solid #e2e8f0;
    font-size: 1.05rem;
    color: #232a36;
    background: #f9fafb;
    margin-bottom: 0.2em;
    resize: none;
    width: 100%;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff5e8a;
}
.form-group textarea {
    min-height: 90px;
    width: 100%;
    box-sizing: border-box;
}
.send-btn {
    background: linear-gradient(90deg, #ff5e8a 0%, #ff9966 100%);
    color: #fff;
    border: none;
    border-radius: 1em;
    padding: 1em 0;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: box-shadow 0.2s;
    margin-top: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7em;
}
.send-btn:hover {
    box-shadow: 0 4px 16px rgba(255, 94, 98, 0.18);
}
@media (max-width: 900px) {
    .get-involved-content {
        flex-direction: column;
        align-items: center;
        gap: 2em;
    }
    .contact-info,
    .ways-to-help,
    .message-form {
        max-width: 95vw;
        width: 95vw;
        min-width: 0;
    }
    .get-involved-title {
        font-size: 2rem;
    }
}
/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(180deg, #fff6fa 0%, #fff6f6 100%);
    padding: 60px 0 40px 0;
    text-align: center;
}
.testimonial-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1.2em auto;
    font-size: 2.2rem;
    background: linear-gradient(90deg, #ff5e8a 0%, #ff9966 100%);
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 2px 8px rgba(255, 94, 98, 0.1);
}
.testimonial-quote {
    color: #4a5568;
    font-size: 1.13rem;
    line-height: 1.7;
    margin-bottom: 1.3em;
    font-style: italic;
    min-height: 90px;
}
/* Testimonials Section */
.testimonial-name {
    font-size: 1.18rem;
    font-weight: 700;
    color: #232a36;
    margin-bottom: 0.1em;
    letter-spacing: 0.01em;
}
.testimonial-title {
    color: #ff5e8a;
    font-size: 1.01rem;
    margin-bottom: 0.5em;
    font-weight: 500;
}

@media (max-width: 900px) {
    .testimonials-list {
        flex-direction: column;
        align-items: center;
        gap: 1.5em;
    }
    .testimonial-card {
        max-width: 95vw;
        width: 95vw;
        min-width: 0;
    }
    .testimonials-section h2 {
        font-size: 2rem;
    }
}
.testimonials-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #232a36;
    margin-bottom: 0.5em;
}
.testimonials-section p {
    color: #4a5568;
    font-size: 1.25rem;
    margin-bottom: 2.5em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.testimonials-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5em 2em;
    margin-top: 2em;
}
.testimonial-card {
    background: linear-gradient(135deg, #fff6fa 0%, #fff6f6 100%);
    border-radius: 1.5em;
    box-shadow: 0 4px 24px rgba(255, 94, 98, 0.1);
    padding: 2.5em 2em 2em 2em;
    text-align: center;
    max-width: 400px;
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: box-shadow 0.2s;
    margin-bottom: 0.5em;
    border: 1px solid pink;
}
.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(255, 94, 98, 0.16);
    transform: translateY(-10px) !important;
}
.testimonial-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1.2em auto;
    font-size: 2.2rem;
    background: linear-gradient(90deg, #ff5e8a 0%, #ff9966 100%);
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 2px 8px rgba(255, 94, 98, 0.1);
}
.testimonial-quote {
    color: #4a5568;
    font-size: 1.13rem;
    line-height: 1.7;
    margin-bottom: 1.3em;
    font-style: italic;
    min-height: 90px;
}
.testimonial-name {
    font-size: 1.18rem;
    font-weight: 700;
    color: #232a36;
    margin-bottom: 0.1em;
    letter-spacing: 0.01em;
}
.testimonial-title {
    color: #ff5e8a;
    font-size: 1.01rem;
    margin-bottom: 0.5em;
    font-weight: 500;
}

@media (max-width: 900px) {
    .testimonials-list {
        flex-direction: column;
        align-items: center;
        gap: 1.5em;
    }
    .testimonial-card {
        max-width: 95vw;
        width: 95vw;
        min-width: 0;
    }
    .testimonials-section h2 {
        font-size: 2rem;
    }
}
/* Mission, Vision, Values Section */
.mvv-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5em;
    margin: 0 auto;
    padding: 50px 0 50px 0;
    background: none;
}
.mvv-card {
    background: linear-gradient(135deg, #fff6fa 0%, #fff6f6 100%);
    border-radius: 1.5em;
    box-shadow: 0 4px 24px rgba(255, 94, 98, 0.08);
    padding: 2.5em 2em 2em 2em;
    text-align: center;
    max-width: 350px;
    flex: 1 1 0;
    transition: box-shadow 0.2s;
    height: 400px;
    border: 1px solid pink;
}
.mvv-card:hover {
    box-shadow: 0 8px 32px rgba(255, 94, 98, 0.16);
    transform: translateY(-10px) !important;
}
.mvv-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1em auto;
    font-size: 2.5rem;
    background: linear-gradient(90deg, #ff5e8a 0%, #ff9966 100%);
    border-radius: 50%;
    color: #fff;
}
.mvv-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #232a36;
    margin-bottom: 0.7em;
}
.mvv-desc {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .mvv-section {
        flex-direction: column;
        align-items: center;
        gap: 2em;
        padding: 30px 0 0 0;
    }
    .mvv-card {
        max-width: 95vw;
        width: 95vw;
    }
}

/* Programs Section */

.programs-section {
    background: linear-gradient(180deg, #fff6fa 0%, #fff6f6 100%);
    padding: 60px 0 40px 0;
    text-align: center;
}
.programs-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #232a36;
    margin-bottom: 0.5em;
}
.programs-section p {
    color: #4a5568;
    font-size: 1.25rem;
    margin-bottom: 2.5em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.programs-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
}
.program-card {
    background: #fff;
    border-radius: 1.2em;
    box-shadow: 0 4px 24px rgba(255, 94, 98, 0.1);
    overflow: hidden;
    max-width: 320px;
    min-width: 220px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}
.program-card:hover {
    box-shadow: 0 8px 32px rgba(255, 94, 98, 0.18);
}
.program-card-top {
    position: relative;
    height: 160px;
    border-top-left-radius: 1.2em;
    border-top-right-radius: 1.2em;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.program-card-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.program-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 94, 138, 0.7) 0%,
        rgba(255, 153, 102, 0.7) 100%
    );
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.program-icon {
    font-size: 2rem;
    color: #fff;
    margin: 1em;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    padding: 0.4em;
    z-index: 2;
}
.program-card-title {
    position: absolute;
    left: 2.8em;
    top: 1.2em;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    z-index: 2;
    opacity: 0.8;
}
.program-card-bottom {
    padding: 2em 1.5em 1.5em 1.5em;
    text-align: left;
}
.program-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #232a36;
    margin-bottom: 0.5em;
}
.program-desc {
    font-size: 1.08rem;
    color: #4a5568;
    opacity: 1;
}
.programs-btn {
    display: inline-block;
    margin: 2.5em auto 0 auto;
    padding: 0.9em 2.8em;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #ff5e8a 0%, #ff9966 100%);
    border: none;
    border-radius: 2em;
    box-shadow: 0 2px 8px rgba(255, 94, 98, 0.1);
    cursor: pointer;
    transition: box-shadow 0.2s;
}
.programs-btn:hover {
    box-shadow: 0 4px 16px rgba(255, 94, 98, 0.18);
}

@media (max-width: 900px) {
    .programs-list {
        flex-direction: column;
        align-items: center;
        gap: 1.5em;
    }
    .program-card {
        max-width: 95vw;
        width: 95vw;
    }
}
/* About Section Styles */
.about-section {
    padding: 70px 20px 40px 20px;
    background: #fff;
    text-align: center;
}
.about-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #232a36;
    margin-bottom: 0.5em;
}
.about-section p {
    color: #4a5568;
    font-size: 1.25rem;
    margin-bottom: 2.5em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3em;
    max-width: 1100px;
    margin: 0 auto 0 auto;
    text-align: left;
}
.about-image-card {
    background: #fff;
    border-radius: 1.5em;
    box-shadow: 0 8px 32px rgba(255, 94, 98, 0.1);
    overflow: hidden;
    width: 420px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5em;
}
.about-story {
    max-width: 520px;
}
.about-story h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #232a36;
    margin-bottom: 1em;
}
.about-story p {
    color: #4a5568;
    font-size: 1.15rem;
    margin-bottom: 1.2em;
}

@media (max-width: 1100px) {
    .about-content {
        flex-direction: column;
        align-items: center;
        gap: 2em;
        text-align: center;
    }
    .about-image-card {
        width: 95vw;
        height: auto;
        min-width: 180px;
        min-height: 180px;
        max-width: 420px;
        max-height: 340px;
    }
    .about-story {
        max-width: 95vw;
    }
    .about-section h2 {
        font-size: 2rem;
    }
}

/* Hero Section Styles */
.hero-section {
    background:
        radial-gradient(circle at top left, #fff1f2 0%, transparent 40%),
        radial-gradient(circle at bottom right, #fff7ed 0%, transparent 40%),
        #f9fbff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    padding: 80px 20px 40px 20px;
    text-align: left;
    gap: 3em;
}

.hero-content {
    max-width: 600px;
}

.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #232a36;
    margin-bottom: 0.5em;
    line-height: 1.1;
}

.hero-section .highlight {
    background: #f37021;
    color: #fff;
    padding: 0 0.2em;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    box-shadow: 0 2px 8px rgba(255, 94, 98, 0.18);
}

.hero-section p {
    color: #4a5568;
    font-size: 1.25rem;
    margin-bottom: 2em;
}

.hero-section .button-group {
    display: flex;
    gap: 1.5em;
    margin-bottom: 2em;
}

.hero-section .btn-primary {
    background: linear-gradient(90deg, #ff5e8a 0%, #ff9966 100%);
    color: #fff;
    border: none;
    border-radius: 2em;
    padding: 0.9em 2.2em;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(255, 94, 98, 0.08);
}

.hero-section .btn-primary:hover {
    box-shadow: 0 4px 16px rgba(255, 94, 98, 0.18);
}

.hero-section .btn-outline {
    background: #fff;
    color: #ff5e8a;
    border: 2px solid #ff5e8a;
    border-radius: 2em;
    padding: 0.9em 2.2em;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
}

.hero-section .btn-outline:hover {
    background: #ff5e8a;
    color: #fff;
}

.hero-image-card {
    background: #fff;
    border-radius: 2em;
    box-shadow: 0 8px 32px rgba(255, 94, 98, 0.12);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 480px;
    height: 480px;
    overflow: hidden;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2em;
}

.hero-stats {
    display: flex;
    gap: 4em;
    margin-top: 3em;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stat-icon {
    font-size: 2.2rem;
    color: #ff5e8a;
    margin-bottom: 0.5em;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #232a36;
}

.hero-stat-label {
    color: #4a5568;
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
}

@media (max-width: 1100px) {
    .hero-section {
        flex-direction: column;
        align-items: center;
        gap: 2em;
        min-height: 0;
        padding: 40px 10px 20px 10px;
        text-align: center;
    }
    .hero-image-card {
        width: 95vw;
        height: auto;
        min-width: 220px;
        min-height: 220px;
        max-width: 420px;
        max-height: 420px;
    }
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 2em;
        margin-top: 2em;
    }
}
